home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group94c.txt / 000031_jeffery@runner.jpl.utsa.edu _Thu Dec 22 06:43:19 1994.msg < prev    next >
Internet Message Format  |  1995-02-09  |  21KB

  1. Received: from optima.CS.Arizona.EDU by cheltenham.CS.Arizona.EDU; Thu, 22 Dec 1994 05:43:41 MST
  2. Received: from runner.utsa.edu (runner.jpl.utsa.edu) by optima.CS.Arizona.EDU (5.65c/15) via SMTP
  3.     id AA15125; Thu, 22 Dec 1994 05:43:37 MST
  4. Received: by runner.utsa.edu (5.0/SMI-SVR4)
  5.     id AA03475; Thu, 22 Dec 1994 06:43:19 -0600
  6. Date: Thu, 22 Dec 1994 06:43:19 -0600
  7. From: jeffery@runner.jpl.utsa.edu (Clinton L. Jeffery)
  8. Message-Id: <9412221243.AA03475@runner.utsa.edu>
  9. To: abrahams@equinox.ShaysNet.COM
  10. Cc: icon-group@cs.arizona.edu
  11. In-Reply-To: <9412220403.AA06292@equinox.shaysnet.com> (abrahams@equinox.ShaysNet.COM)
  12. Subject: Re: Where is icon-mode.el for Emacs?
  13. Content-Length: 19913
  14.  
  15. I was under the impression that GNU emacs came with an icon-mode.el
  16. At least, I know *I* didn't have to write one.
  17. Here's what I've been using; its hacked a bit from the real one.
  18.  
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;; Icon code editing commands for Emacs
  21. ;; Derived from c-mode.el  15-Apr-88  Chris Smith  convex!csmith
  22. ;; Copyright (C) 1988 Free Software Foundation, Inc.
  23.  
  24. ;; This file is part of GNU Emacs.
  25.  
  26. ;; GNU Emacs is distributed in the hope that it will be useful,
  27. ;; but WITHOUT ANY WARRANTY.  No author or distributor
  28. ;; accepts responsibility to anyone for the consequences of using it
  29. ;; or for whether it serves any particular purpose or works at all,
  30. ;; unless he says so in writing.  Refer to the GNU Emacs General Public
  31. ;; License for full details.
  32.  
  33. ;; Everyone is granted permission to copy, modify and redistribute
  34. ;; GNU Emacs, but only under the conditions described in the
  35. ;; GNU Emacs General Public License.   A copy of this license is
  36. ;; supposed to have been given to you along with GNU Emacs so you
  37. ;; can know your rights and responsibilities.  It should be in a
  38. ;; file named COPYING.  Among other things, the copyright notice
  39. ;; and this notice must be preserved on all copies.
  40.  
  41. (provide 'icon-mode)
  42.  
  43. (defvar icon-mode-abbrev-table nil
  44.   "Abbrev table in use in Icon-mode buffers.")
  45. (define-abbrev-table 'icon-mode-abbrev-table ())
  46.  
  47. (defvar icon-mode-map ()
  48.   "Keymap used in Icon mode.")
  49. (if icon-mode-map
  50.     ()
  51.   (setq icon-mode-map (make-sparse-keymap))
  52.   (define-key icon-mode-map "{" 'electric-icon-brace)
  53.   (define-key icon-mode-map "}" 'electric-icon-brace)
  54.   (define-key icon-mode-map "\e\C-h" 'mark-icon-function)
  55.   (define-key icon-mode-map "\e\C-a" 'beginning-of-icon-defun)
  56.   (define-key icon-mode-map "\e\C-e" 'end-of-icon-defun)
  57.   (define-key icon-mode-map "\e\C-q" 'indent-icon-exp)
  58.   (define-key icon-mode-map "\177" 'backward-delete-char-untabify)
  59.   (define-key icon-mode-map "\t" 'icon-indent-command))
  60.  
  61. (defvar icon-mode-syntax-table nil
  62.   "Syntax table in use in Icon-mode buffers.")
  63.  
  64. (if icon-mode-syntax-table
  65.     ()
  66.   (setq icon-mode-syntax-table (make-syntax-table))
  67.   (modify-syntax-entry ?\\ "\\" icon-mode-syntax-table)
  68.   (modify-syntax-entry ?# "<" icon-mode-syntax-table)
  69.   (modify-syntax-entry ?\n ">" icon-mode-syntax-table)
  70.   (modify-syntax-entry ?$ "." icon-mode-syntax-table)
  71.   (modify-syntax-entry ?/ "." icon-mode-syntax-table)
  72.   (modify-syntax-entry ?* "." icon-mode-syntax-table)
  73.   (modify-syntax-entry ?+ "." icon-mode-syntax-table)
  74.   (modify-syntax-entry ?- "." icon-mode-syntax-table)
  75.   (modify-syntax-entry ?= "." icon-mode-syntax-table)
  76.   (modify-syntax-entry ?% "." icon-mode-syntax-table)
  77.   (modify-syntax-entry ?< "." icon-mode-syntax-table)
  78.   (modify-syntax-entry ?> "." icon-mode-syntax-table)
  79.   (modify-syntax-entry ?& "." icon-mode-syntax-table)
  80.   (modify-syntax-entry ?| "." icon-mode-syntax-table)
  81.   (modify-syntax-entry ?\' "\"" icon-mode-syntax-table))
  82.  
  83. ; this used to be 4
  84. (defconst icon-indent-level 3
  85.   "*Indentation of Icon statements with respect to containing block.")
  86. (defconst icon-brace-imaginary-offset 0
  87.   "*Imagined indentation of a Icon open brace that actually follows a statement.")
  88. (defconst icon-brace-offset 3
  89.   "*Extra indentation for braces, compared with other text in same context.")
  90. ; this used to be 4
  91. (defconst icon-continued-statement-offset 3
  92.   "*Extra indent for lines not starting new statements.")
  93. (defconst icon-continued-brace-offset 0
  94.   "*Extra indent for substatements that start with open-braces.
  95. This is in addition to icon-continued-statement-offset.")
  96.  
  97. (defconst icon-auto-newline nil
  98.   "*Non-nil means automatically newline before and after braces,
  99. and after colons and semicolons, inserted in C code.")
  100.  
  101. (defconst icon-tab-always-indent t
  102.   "*Non-nil means TAB in Icon mode should always reindent the current line,
  103. regardless of where in the line point is when the TAB command is used.")
  104.  
  105. (defun icon-mode ()
  106.   "Major mode for editing Icon code.
  107. Expression and list commands understand all Icon brackets.
  108. Tab indents for Icon code.
  109. Paragraphs are separated by blank lines only.
  110. Delete converts tabs to spaces as it moves back.
  111. \\{icon-mode-map}
  112. Variables controlling indentation style:
  113.  icon-tab-always-indent
  114.     Non-nil means TAB in Icon mode should always reindent the current line,
  115.     regardless of where in the line point is when the TAB command is used.
  116.  icon-auto-newline
  117.     Non-nil means automatically newline before and after braces
  118.     inserted in Icon code.
  119.  icon-indent-level
  120.     Indentation of Icon statements within surrounding block.
  121.     The surrounding block's indentation is the indentation
  122.     of the line on which the open-brace appears.
  123.  icon-continued-statement-offset
  124.     Extra indentation given to a substatement, such as the
  125.     then-clause of an if or body of a while.
  126.  icon-continued-brace-offset
  127.     Extra indentation given to a brace that starts a substatement.
  128.     This is in addition to icon-continued-statement-offset.
  129.  icon-brace-offset
  130.     Extra indentation for line if it starts with an open brace.
  131.  icon-brace-imaginary-offset
  132.     An open brace following other text is treated as if it were
  133.     this far to the right of the start of its line.
  134.  
  135. Turning on Icon mode calls the value of the variable icon-mode-hook with no args,
  136. if that value is non-nil."
  137.   (interactive)
  138.   (kill-all-local-variables)
  139.   (use-local-map icon-mode-map)
  140.   (setq major-mode 'icon-mode)
  141.   (setq mode-name "Icon")
  142.   (setq local-abbrev-table icon-mode-abbrev-table)
  143.   (set-syntax-table icon-mode-syntax-table)
  144.   (make-local-variable 'paragraph-start)
  145.   (setq paragraph-start (concat "^$\\|" page-delimiter))
  146.   (make-local-variable 'paragraph-separate)
  147.   (setq paragraph-separate paragraph-start)
  148.   (make-local-variable 'indent-line-function)
  149.   (setq indent-line-function 'icon-indent-line)
  150.   (make-local-variable 'require-final-newline)
  151.   (setq require-final-newline t)
  152.   (make-local-variable 'comment-start)
  153.   (setq comment-start "# ")
  154.   (make-local-variable 'comment-end)
  155.   (setq comment-end "")
  156.   (make-local-variable 'comment-column)
  157.   (setq comment-column 32)
  158.   (make-local-variable 'comment-start-skip)
  159.   (setq comment-start-skip "# *")
  160.   (make-local-variable 'comment-indent-hook)
  161.   (setq comment-indent-hook 'icon-comment-indent)
  162.   (run-hooks 'icon-mode-hook))
  163.  
  164. ;; This is used by indent-for-comment
  165. ;; to decide how much to indent a comment in Icon code
  166. ;; based on its context.
  167. (defun icon-comment-indent ()
  168.   (if (looking-at "^#")
  169.       0                ;Existing comment at bol stays there.
  170.     (save-excursion
  171.       (skip-chars-backward " \t")
  172.       (max (1+ (current-column))    ;Else indent at comment column
  173.        comment-column))))    ; except leave at least one space.
  174.  
  175. (defun electric-icon-brace (arg)
  176.   "Insert character and correct line's indentation."
  177.   (interactive "P")
  178.   (let (insertpos)
  179.     (if (and (not arg)
  180.          (eolp)
  181.          (or (save-excursion
  182.            (skip-chars-backward " \t")
  183.            (bolp))
  184.          (if icon-auto-newline
  185.              (progn (icon-indent-line) (newline) t)
  186.            nil)))
  187.     (progn
  188.       (insert last-command-char)
  189.       (icon-indent-line)
  190.       (if icon-auto-newline
  191.           (progn
  192.         (newline)
  193.         ;; (newline) may have done auto-fill
  194.         (setq insertpos (- (point) 2))
  195.         (icon-indent-line)))
  196.       (save-excursion
  197.         (if insertpos (goto-char (1+ insertpos)))
  198.         (delete-char -1))))
  199.     (if insertpos
  200.     (save-excursion
  201.       (goto-char insertpos)
  202.       (self-insert-command (prefix-numeric-value arg)))
  203.       (self-insert-command (prefix-numeric-value arg)))))
  204.  
  205. (defun icon-indent-command (&optional whole-exp)
  206.   (interactive "P")
  207.   "Indent current line as Icon code, or in some cases insert a tab character.
  208. If icon-tab-always-indent is non-nil (the default), always indent current line.
  209. Otherwise, indent the current line only if point is at the left margin
  210. or in the line's indentation; otherwise insert a tab.
  211.  
  212. A numeric argument, regardless of its value,
  213. means indent rigidly all the lines of the expression starting after point
  214. so that this line becomes properly indented.
  215. The relative indentation among the lines of the expression are preserved."
  216.   (if whole-exp
  217.       ;; If arg, always indent this line as Icon
  218.       ;; and shift remaining lines of expression the same amount.
  219.       (let ((shift-amt (icon-indent-line))
  220.         beg end)
  221.     (save-excursion
  222.       (if icon-tab-always-indent
  223.           (beginning-of-line))
  224.       (setq beg (point))
  225.       (forward-sexp 1)
  226.       (setq end (point))
  227.       (goto-char beg)
  228.       (forward-line 1)
  229.       (setq beg (point)))
  230.     (if (> end beg)
  231.         (indent-code-rigidly beg end shift-amt "#")))
  232.     (if (and (not icon-tab-always-indent)
  233.          (save-excursion
  234.            (skip-chars-backward " \t")
  235.            (not (bolp))))
  236.     (insert-tab)
  237.       (icon-indent-line))))
  238.  
  239. (defun icon-indent-line ()
  240.   "Indent current line as Icon code.
  241. Return the amount the indentation changed by."
  242.   (let ((indent (calculate-icon-indent nil))
  243.     beg shift-amt
  244.     (case-fold-search nil)
  245.     (pos (- (point-max) (point))))
  246.     (beginning-of-line)
  247.     (setq beg (point))
  248.     (cond ((eq indent nil)
  249.        (setq indent (current-indentation)))
  250.       ((eq indent t)
  251.        (setq indent (calculate-icon-indent-within-comment)))
  252. ;      ((looking-at "[ \t]*#")
  253. ;       (setq indent 0))
  254.       (t
  255.        (skip-chars-forward " \t")
  256.        (if (listp indent) (setq indent (car indent)))
  257.        (cond ((and (looking-at "else\\b")
  258.                (not (looking-at "else\\s_")))
  259.           (setq indent (save-excursion
  260.                  (icon-backward-to-start-of-if)
  261.                  (current-indentation))))
  262. ;;;         ((or (= (following-char) ?})
  263. ;;;              (looking-at "end\\b"))
  264.          ((looking-at "end\\b")
  265.           (setq indent (- indent icon-indent-level)))
  266.          ((= (following-char) ?{)
  267.           (setq indent (+ indent icon-brace-offset))))))
  268.     (skip-chars-forward " \t")
  269.     (setq shift-amt (- indent (current-column)))
  270.     (if (zerop shift-amt)
  271.     (if (> (- (point-max) pos) (point))
  272.         (goto-char (- (point-max) pos)))
  273.       (delete-region beg (point))
  274.       (indent-to indent)
  275.       ;; If initial point was within line's indentation,
  276.       ;; position after the indentation.  Else stay at same point in text.
  277.       (if (> (- (point-max) pos) (point))
  278.       (goto-char (- (point-max) pos))))
  279.     shift-amt))
  280.  
  281. (defun calculate-icon-indent (&optional parse-start)
  282.   "Return appropriate indentation for current line as Icon code.
  283. In usual case returns an integer: the column to indent to.
  284. Returns nil if line starts inside a string, t if in a comment."
  285.   (save-excursion
  286.     (beginning-of-line)
  287.     (let ((indent-point (point))
  288.       (case-fold-search nil)
  289.       state
  290.       containing-sexp
  291.       toplevel)
  292.       (if parse-start
  293.       (goto-char parse-start)
  294.     (setq toplevel (beginning-of-icon-defun)))
  295.       (while (< (point) indent-point)
  296.     (setq parse-start (point))
  297.     (setq state (parse-partial-sexp (point) indent-point 0))
  298.     (setq containing-sexp (car (cdr state))))
  299.       (cond ((or (nth 3 state) (nth 4 state))
  300.          ;; return nil or t if should not change this line
  301.          (nth 4 state))
  302.         ((and containing-sexp
  303.           (/= (char-after containing-sexp) ?{))
  304.          ;; line is expression, not statement:
  305.          ;; indent to just after the surrounding open.
  306.          (goto-char (1+ containing-sexp))
  307.          (current-column))
  308.         (t
  309.           ;; Statement level.  Is it a continuation or a new statement?
  310.           ;; Find previous non-comment character.
  311.           (if toplevel
  312.           (progn (icon-backward-to-noncomment (point-min))
  313.              (if (icon-is-continuation-line)
  314.                  icon-continued-statement-offset 0))
  315.         (if (null containing-sexp)
  316.             (progn (beginning-of-icon-defun)
  317.                (setq containing-sexp (point))))
  318.         (goto-char indent-point)
  319.         (icon-backward-to-noncomment containing-sexp)
  320.         ;; Now we get the answer.
  321.         (if (icon-is-continuation-line)
  322.             ;; This line is continuation of preceding line's statement;
  323.             ;; indent  icon-continued-statement-offset  more than the
  324.             ;; first line of the statement.
  325.             (progn
  326.               (icon-backward-to-start-of-continued-exp containing-sexp)
  327.               (+ icon-continued-statement-offset (current-column)
  328.              (if (save-excursion (goto-char indent-point)
  329.                          (skip-chars-forward " \t")
  330.                          (eq (following-char) ?{))
  331.                  icon-continued-brace-offset 0)))
  332.           ;; This line starts a new statement.
  333.           ;; Position following last unclosed open.
  334.           (goto-char containing-sexp)
  335.           ;; Is line first statement after an open-brace?
  336.           (or
  337.             ;; If no, find that first statement and indent like it.
  338.             (save-excursion
  339.               (if (looking-at "procedure\\s ")
  340.               (forward-sexp 3)
  341.             (forward-char 1))
  342.               (while (progn (skip-chars-forward " \t\n")
  343.                     (looking-at "#"))
  344.             ;; Skip over comments following openbrace.
  345.             (forward-line 1))
  346.               ;; The first following code counts
  347.               ;; if it is before the line we want to indent.
  348.               (and (< (point) indent-point)
  349.                (current-column)))
  350.             ;; If no previous statement,
  351.             ;; indent it relative to line brace is on.
  352.             ;; For open brace in column zero, don't let statement
  353.             ;; start there too.  If icon-indent-level is zero,
  354.             ;; use icon-brace-offset + icon-continued-statement-offset instead.
  355.             ;; For open-braces not the first thing in a line,
  356.             ;; add in icon-brace-imaginary-offset.
  357.             (+ (if (and (bolp) (zerop icon-indent-level))
  358.                (+ icon-brace-offset icon-continued-statement-offset)
  359.              icon-indent-level)
  360.                ;; Move back over whitespace before the openbrace.
  361.                ;; If openbrace is not first nonwhite thing on the line,
  362.                ;; add the icon-brace-imaginary-offset.
  363.                (progn (skip-chars-backward " \t")
  364.                   (if (bolp) 0 icon-brace-imaginary-offset))
  365.                ;; here we are
  366.                (current-indentation))))))))))
  367.  
  368. (defun icon-is-continuation-line ()
  369.   (let* ((ch (preceding-char))
  370.      (ch-syntax (char-syntax ch)))
  371.     (if (eq ch-syntax ?w)
  372.     (assoc (buffer-substring
  373.          (progn (forward-word -1) (point))
  374.          (progn (forward-word 1) (point)))
  375.            '(("do") ("dynamic") ("else") ("initial") ("link")
  376.          ("local") ("of") ("static") ("then")))
  377.       (not (memq ch '(0 ?\; ?\} ?\{ ?\) ?\] ?\" ?\' ?\n))))))
  378.  
  379. (defun icon-backward-to-noncomment (lim)
  380.   (let (opoint stop)
  381.     (while (not stop)
  382.       (skip-chars-backward " \t\n\f" lim)
  383.       (setq opoint (point))
  384.       (beginning-of-line)
  385.       (if (and (search-forward "#" opoint 'move)
  386.            (< lim (point)))
  387.       (forward-char -1)
  388.     (setq stop t)))))
  389.  
  390. (defun icon-backward-to-start-of-continued-exp (lim)
  391.   (if (memq (preceding-char) '(?\) ?\]))
  392.       (forward-sexp -1))
  393.   (while (icon-is-continued-line)
  394.     (end-of-line 0))
  395.   (beginning-of-line)
  396.   (if (<= (point) lim)
  397.       (goto-char (1+ lim)))
  398.   (skip-chars-forward " \t"))
  399.  
  400. (defun icon-is-continued-line ()
  401.   (save-excursion
  402.     (end-of-line 0)
  403.     (icon-is-continuation-line)))
  404.  
  405. (defun icon-backward-to-start-of-if (&optional limit)
  406.   "Move to the start of the last ``unbalanced'' if."
  407.   (or limit (setq limit (save-excursion (beginning-of-icon-defun) (point))))
  408.   (let ((if-level 1)
  409.     (case-fold-search nil))
  410.     (while (not (zerop if-level))
  411.       (backward-sexp 1)
  412.       (cond ((looking-at "else\\b")
  413.          (setq if-level (1+ if-level)))
  414.         ((looking-at "if\\b")
  415.          (setq if-level (1- if-level)))
  416.         ((< (point) limit)
  417.          (setq if-level 0)
  418.          (goto-char limit))))))
  419.  
  420. (defun mark-icon-function ()
  421.   "Put mark at end of Icon function, point at beginning."
  422.   (interactive)
  423.   (push-mark (point))
  424.   (end-of-icon-defun)
  425.   (push-mark (point))
  426.   (beginning-of-line 0)
  427.   (beginning-of-icon-defun))
  428.  
  429. (defun beginning-of-icon-defun ()
  430.   "Go to the start of the enclosing procedure; return t if at top level."
  431.   (interactive)
  432.   (if (re-search-backward "^procedure\\s \\|^end[ \t\n]" (point-min) 'move)
  433.       (looking-at "e")
  434.     t))
  435.  
  436. (defun end-of-icon-defun ()
  437.   (interactive)
  438.   (if (not (bobp)) (forward-char -1))
  439.   (re-search-forward "\\(\\s \\|^\\)end\\(\\s \\|$\\)" (point-max) 'move)
  440.   (forward-word -1)
  441.   (forward-line 1))
  442.  
  443. (defun indent-icon-exp ()
  444.   "Indent each line of the Icon grouping following point."
  445.   (interactive)
  446.   (let ((indent-stack (list nil))
  447.     (contain-stack (list (point)))
  448.     (case-fold-search nil)
  449.     restart outer-loop-done inner-loop-done state ostate
  450.     this-indent last-sexp
  451.     at-else at-brace at-do
  452.     (opoint (point))
  453.     (next-depth 0))
  454.     (save-excursion
  455.       (forward-sexp 1))
  456.     (save-excursion
  457.       (setq outer-loop-done nil)
  458.       (while (and (not (eobp)) (not outer-loop-done))
  459.     (setq last-depth next-depth)
  460.     ;; Compute how depth changes over this line
  461.     ;; plus enough other lines to get to one that
  462.     ;; does not end inside a comment or string.
  463.     ;; Meanwhile, do appropriate indentation on comment lines.
  464.     (setq innerloop-done nil)
  465.     (while (and (not innerloop-done)
  466.             (not (and (eobp) (setq outer-loop-done t))))
  467.       (setq ostate state)
  468.       (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
  469.                       nil nil state))
  470.       (setq next-depth (car state))
  471.       (if (and (car (cdr (cdr state)))
  472.            (>= (car (cdr (cdr state))) 0))
  473.           (setq last-sexp (car (cdr (cdr state)))))
  474.       (if (or (nth 4 ostate))
  475.           (icon-indent-line))
  476.       (if (or (nth 3 state))
  477.           (forward-line 1)
  478.         (setq innerloop-done t)))
  479.     (if (<= next-depth 0)
  480.         (setq outer-loop-done t))
  481.     (if outer-loop-done
  482.         nil
  483.       (if (/= last-depth next-depth)
  484.           (setq last-sexp nil))
  485.       (while (> last-depth next-depth)
  486.         (setq indent-stack (cdr indent-stack)
  487.           contain-stack (cdr contain-stack)
  488.           last-depth (1- last-depth)))
  489.       (while (< last-depth next-depth)
  490.         (setq indent-stack (cons nil indent-stack)
  491.           contain-stack (cons nil contain-stack)
  492.           last-depth (1+ last-depth)))
  493.       (if (null (car contain-stack))
  494.           (setcar contain-stack (or (car (cdr state))
  495.                     (save-excursion (forward-sexp -1)
  496.                             (point)))))
  497.       (forward-line 1)
  498.       (skip-chars-forward " \t")
  499.       (if (eolp)
  500.           nil
  501.         (if (and (car indent-stack)
  502.              (>= (car indent-stack) 0))
  503.         ;; Line is on an existing nesting level.
  504.         ;; Lines inside parens are handled specially.
  505.         (if (/= (char-after (car contain-stack)) ?{)
  506.             (setq this-indent (car indent-stack))
  507.           ;; Line is at statement level.
  508.           ;; Is it a new statement?  Is it an else?
  509.           ;; Find last non-comment character before this line
  510.           (save-excursion
  511.             (setq at-else (looking-at "else\\W"))
  512.             (setq at-brace (= (following-char) ?{))
  513.             (icon-backward-to-noncomment opoint)
  514.             (if (icon-is-continuation-line)
  515.             ;; Preceding line did not end in comma or semi;
  516.             ;; indent this line  icon-continued-statement-offset
  517.             ;; more than previous.
  518.             (progn
  519.               (icon-backward-to-start-of-continued-exp (car contain-stack))
  520.               (setq this-indent
  521.                 (+ icon-continued-statement-offset (current-column)
  522.                    (if at-brace icon-continued-brace-offset 0))))
  523.               ;; Preceding line ended in comma or semi;
  524.               ;; use the standard indent for this level.
  525.               (if at-else
  526.               (progn (icon-backward-to-start-of-if opoint)
  527.                  (setq this-indent (current-indentation)))
  528.             (setq this-indent (car indent-stack))))))
  529.           ;; Just started a new nesting level.
  530.           ;; Compute the standard indent for this level.
  531.           (let ((val (calculate-icon-indent
  532.                (if (car indent-stack)
  533.                    (- (car indent-stack))))))
  534.         (setcar indent-stack
  535.             (setq this-indent val))))
  536.         ;; Adjust line indentation according to its contents
  537.         (if (or (= (following-char) ?})
  538.             (looking-at "end\\b"))
  539.         (setq this-indent (- this-indent icon-indent-level)))
  540.         (if (= (following-char) ?{)
  541.         (setq this-indent (+ this-indent icon-brace-offset)))
  542.         ;; Put chosen indentation into effect.
  543.         (or (= (current-column) this-indent)
  544.         (progn
  545.           (delete-region (point) (progn (beginning-of-line) (point)))
  546.           (indent-to this-indent)))
  547.         ;; Indent any comment following the text.
  548.         (or (looking-at comment-start-skip)
  549.         (if (re-search-forward comment-start-skip (save-excursion (end-of-line) (point)) t)
  550.             (progn (indent-for-comment) (beginning-of-line))))))))))